mirror of
https://github.com/barronwaffles/dwc_network_server_emulator.git
synced 2026-07-07 21:04:10 -05:00
10 lines
151 B
Docker
10 lines
151 B
Docker
FROM python:2-alpine
|
|
|
|
RUN apk add --no-cache musl-dev gcc
|
|
RUN pip install twisted
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
ENTRYPOINT ["python", "master_server.py"]
|