diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..eab4511 --- /dev/null +++ b/Dockerfile @@ -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"] diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..6783396 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,5 @@ +services: + svdriver: + build: . + ports: + - "6969:6969"