Skip to content
This repository was archived by the owner on Jan 21, 2021. It is now read-only.

Commit efa5e1a

Browse files
author
staticdev
committed
Improvements on dockerfile
1 parent 8bc25ae commit efa5e1a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7.3-alpine
1+
FROM python:3.7.4-alpine
22

33
# Set the working directory to /app
44
WORKDIR /app
@@ -7,8 +7,8 @@ WORKDIR /app
77
ADD . /app
88

99
# install requirements
10-
RUN pip install --upgrade pip
11-
RUN pip install -r requirements.txt
10+
RUN pip install --upgrade pip \
11+
&& pip install -r requirements.txt
1212

1313
# Run app.py when the container launches
1414
CMD ["python", "echobot.py"]

0 commit comments

Comments
 (0)