14 lines
186 B
Docker
14 lines
186 B
Docker
FROM python:3.11
|
|
|
|
RUN mkdir /url_shortener
|
|
|
|
WORKDIR /url_shortener
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
RUN chmod a+x /url_shortener/docker/start.sh
|
|
|