Browse Source

Add dockerfile and docker compose file

master
Charles Reid 7 years ago
parent
commit
edfe706337
  1. 9
      Dockerfile
  2. 10
      docker-compose.yml

9
Dockerfile

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
FROM jfloff/alpine-python:latest-slim
EXPOSE 7777
EXPOSE 7778
EXPOSE 7779
RUN /entrypoint.sh \
-p twisted \
&& echo
WORKDIR /app
CMD python helium.py

10
docker-compose.yml

@ -0,0 +1,10 @@ @@ -0,0 +1,10 @@
version: "3.1"
services:
stormy_files:
build: .
volumes:
- "./helium.py:/app/helium.py"
ports:
- "8081:8081"
Loading…
Cancel
Save