9 lines
204 B
Text
9 lines
204 B
Text
|
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
|