Skip to content

Commit 48192ee

Browse files
committed
Testing different Dockerfile
0 parents  commit 48192ee

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM ubuntu:latest
2+
LABEL authors="lono05"
3+
WORKDIR /app
4+
COPY requirements.txt .
5+
RUN apt-get update && apt-get install -y python3 python3-pip
6+
RUN pip3 install -r requirements.txt
7+
COPY . .
8+
EXPOSE 5000
9+
10+
11+

0 commit comments

Comments
 (0)