bepass-org / bepass

A simple DPI bypass tool written in go
MIT License
342 stars 71 forks source link

dockerize #4

Closed maanimis closed 10 months ago

maanimis commented 11 months ago

can you please create a docker-file??

JorgeSaicoski commented 11 months ago

Did you try with it?

FROM python:3.8

WORKDIR /app

COPY requirements.txt ./

RUN pip install -r requirements.txt

COPY . .

CMD ["python", "app.py"]
uoosef commented 11 months ago

this isnt a python app its a golang app and its currently portable enough whats the point in dockerizing it ?