7 lines
No EOL
134 B
Docker
Executable file
7 lines
No EOL
134 B
Docker
Executable file
FROM python:alpine
|
|
|
|
WORKDIR /var/www/
|
|
|
|
COPY ./requirements.txt /var/www/requirements.txt
|
|
|
|
RUN pip install -r /var/www/requirements.txt |