Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -6,6 +6,8 @@ COPY ./server.properties /code/server.properties
|
|
| 6 |
|
| 7 |
USER root
|
| 8 |
RUN chmod +x /code/server.properties
|
| 9 |
-
RUN sudo apt-get install -y ca-certificates
|
| 10 |
|
|
|
|
|
|
|
|
|
|
| 11 |
CMD ["/code/server.properties", "-p", "7860"]
|
|
|
|
| 6 |
|
| 7 |
USER root
|
| 8 |
RUN chmod +x /code/server.properties
|
|
|
|
| 9 |
|
| 10 |
+
RUN apk add --no-cache ca-certificates && \
|
| 11 |
+
update-ca-certificates
|
| 12 |
+
|
| 13 |
CMD ["/code/server.properties", "-p", "7860"]
|