We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af8ae81 commit 0a33106Copy full SHA for 0a33106
Dockerfile
@@ -1,6 +1,8 @@
1
FROM ubuntu:22.04
2
-
+WORKDIR /tmps
3
+COPY . .
4
WORKDIR /app
5
-COPY target/release/GitDataOS .
+RUN cp /tmps/target/release/GitDataOS .
6
+RUN chmod +x GitDataOS
7
+RUN rm -rf /tmps
8
CMD ["/app/GitDataOS"]
0 commit comments