dd40222fd6
docker-compose links them, they share a DB on a volume container, and expose the web interface on the host port 12345
11 lines
187 B
Docker
11 lines
187 B
Docker
FROM python:3.6
|
|
|
|
RUN mkdir -p /usr/src/app
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY . .
|
|
RUN pip install -e .
|
|
EXPOSE 8080
|
|
CMD ["python", "-mmagneticow", "--port", "8080", "--user", "user", "password"]
|