You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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"]
|