mirror of
https://github.com/mattintech/simplefileupload-server.git
synced 2026-07-11 13:01:54 +00:00
13 lines
353 B
Docker
13 lines
353 B
Docker
FROM python:3.8-slim
|
|
WORKDIR /app
|
|
COPY ./src /app
|
|
COPY requirements.txt /app/requirements.txt
|
|
RUN pip install -r /app/requirements.txt
|
|
EXPOSE 7777
|
|
|
|
# The actual values should be provided when running the container
|
|
ENV CLIENT_KEY=default-secret-key \
|
|
UPLOAD_FOLDER=tmp/uploads \
|
|
DEBUG=False
|
|
|
|
CMD ["gunicorn", "wsgi:app", "--bind", "0.0.0.0:7777"] |