Ian Fijolek
90478831fb
All checks were successful
continuous-integration/drone/push Build is passing
11 lines
161 B
Docker
11 lines
161 B
Docker
FROM python:3
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt /app/
|
|
RUN pip install --no-cache-dir -r ./requirements.txt
|
|
|
|
COPY ./main.py /app/
|
|
|
|
CMD ["python", "main.py"]
|