Ian Fijolek
a95bd9d033
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
216 B
Docker
16 lines
216 B
Docker
FROM python:3
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt /app/
|
|
RUN pip install --no-cache-dir -r ./requirements.txt
|
|
|
|
COPY ./main.py /app/
|
|
|
|
ENV BIND_HOST=0.0.0.0
|
|
ENV BIND_PORT=5000
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["python", "main.py"]
|