Skip to content

Commit

Permalink
Added install configuration via Docker Compose
Browse files Browse the repository at this point in the history
  • Loading branch information
gridhead authored Dec 17, 2020
1 parent 92e5bfc commit 3d2b71b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:3.8-alpine
COPY . .
RUN apk add --no-cache gcc musl-dev linux-headers
RUN pip3 install -r requirements.txt
EXPOSE 6969
CMD ["python3", "falc.py", "-p", "6969", "-6"]
5 changes: 5 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
services:
svdriver:
build: .
ports:
- "6969:6969"

0 comments on commit 3d2b71b

Please sign in to comment.