8 lines
204 B
Docker
8 lines
204 B
Docker
FROM python:3.12-slim
|
|
ADD server.py .
|
|
ADD sha_sign.py .
|
|
COPY web_content/ /web_content/
|
|
COPY requirements.txt /requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
CMD ["python", "server.py"]
|
|
EXPOSE 8080
|