Initial commit
This commit is contained in:
14
Dockerfile
Normal file
14
Dockerfile
Normal 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"]
|
||||
|
||||
Reference in New Issue
Block a user