Docker support

This commit is contained in:
2019-01-12 23:21:50 +01:00
parent b924cb73ff
commit 322fcc3979
3 changed files with 81 additions and 2 deletions

16
docker/Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM ubuntu
RUN mkdir -p \
/bin \
/opt/pixeldrain/res
COPY docker/pixeldrain-web /bin/pixeldrain-web
COPY res /opt/pixeldrain/res
EXPOSE 8081
ENV api_url_external="" \
api_url_internal="" \
debug_mode=""
ENTRYPOINT [ "/bin/pixeldrain-web" ]