mirror of
https://github.com/mattintech/simplefileupload-server.git
synced 2026-07-11 14:11:53 +00:00
8 lines
230 B
Docker
8 lines
230 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY ./src /app
|
|
COPY requirements.txt /app/requirements.txt
|
|
RUN pip install -r /app/requirements.txt
|
|
EXPOSE 7777
|
|
#CMD ["gunicorn", "wsgi:app", "--bind", "0.0.0.0:7777"]
|
|
CMD ["python", "start.py"] |