Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
# # Use the base Ubuntu 18.04 image
|
2 |
-
FROM
|
3 |
|
4 |
# # Set the working directory
|
5 |
# WORKDIR /home/cs16server
|
@@ -18,6 +18,6 @@ RUN ls /app
|
|
18 |
#EXPOSE 27015/udp
|
19 |
|
20 |
# # Set the entry point to start the server
|
21 |
-
CMD "python3 -m http.server 0.0.0.0:7860"
|
22 |
# ENTRYPOINT
|
23 |
|
|
|
1 |
# # Use the base Ubuntu 18.04 image
|
2 |
+
FROM python:3.9
|
3 |
|
4 |
# # Set the working directory
|
5 |
# WORKDIR /home/cs16server
|
|
|
18 |
#EXPOSE 27015/udp
|
19 |
|
20 |
# # Set the entry point to start the server
|
21 |
+
CMD "/bin/python3 -m http.server 0.0.0.0:7860"
|
22 |
# ENTRYPOINT
|
23 |
|