mirror of
https://git.wownero.com/lza_menace/wowstash.git
synced 2024-08-15 00:33:15 +00:00
10 lines
238 B
Docker
10 lines
238 B
Docker
|
FROM ubuntu:19.10
|
||
|
WORKDIR /srv
|
||
|
COPY requirements.txt .
|
||
|
RUN apt-get update && apt-get install python3-pip -y
|
||
|
RUN python3 -m pip install -r requirements.txt
|
||
|
COPY wowstash wowstash/
|
||
|
COPY bin/ bin/
|
||
|
EXPOSE 4001
|
||
|
CMD ["/srv/bin/prod-container"]
|