Marco Zeisler 0e76e9ad6c added xway;
updated deps;
2021-05-28 19:24:10 +02:00

8 lines
157 B
Docker

FROM python:3.8-slim
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENV PORT 5000
EXPOSE 5000
ENTRYPOINT [ "python" ]
CMD [ "x_way_server.py" ]