Skip to content

Commit 49f92fe

Browse files
authored
UPDATE v1.0
1 parent 23e0693 commit 49f92fe

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
FROM ubuntu:latest
22

3+
# Install required packages
34
RUN apt-get update && \
45
apt-get install -y git python3 python3-pip && \
56
rm -rf /var/lib/apt/lists/*
67

8+
# Change working directory
79
WORKDIR /app
810

11+
# Copy runner to main directory
912
COPY run.sh .
1013

11-
WORKDIR /app
12-
14+
# Give acccess to runner
1315
RUN chmod -R 777 run.sh
1416

17+
# Start the runner
1518
CMD ["bash", "run.sh"]

0 commit comments

Comments
 (0)