mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
14 lines
170 B
Docker
14 lines
170 B
Docker
FROM python:3.5.6-stretch
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY dist/cbpi-0.0.1.tar.gz ./
|
|
RUN pip install cbpi-0.0.1.tar.gz --no-cache-dir
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD [ "cbpi" ]
|
|
|
|
|