Initial commit

This commit is contained in:
2023-04-18 15:12:22 +02:00
commit 2e615a2f69
5 changed files with 178 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3-alpine
RUN pip install websockets
WORKDIR /beerlog-srv
COPY beerlog-srv.py .
COPY storage.py .
COPY users.obj .
ARG BEERLOG_PORT
ENV BEERLOG_PORT $BEERLOG_PORT
EXPOSE $BEERLOG_PORT
CMD ["python", "./beerlog-srv.py"]