We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d140b4 commit b61534eCopy full SHA for b61534e
dev.Dockerfile renamed to .devcontainer/Dockerfile
@@ -29,7 +29,7 @@ RUN wget https://go.dev/dl/${GO_TAR} && \
29
30
RUN go install github.com/cosmtrek/air@latest
31
32
-COPY resources/development/entrypoint.sh /entrypoint.sh
+COPY ../resources/development/entrypoint.sh /entrypoint.sh
33
34
RUN chmod a+x /entrypoint.sh \
35
&& rm -f /etc/nginx/conf.d/default.conf \
.devcontainer/devcontainer.json
@@ -0,0 +1,9 @@
1
+// Info https://containers.dev/implementors/json_reference/
2
+{
3
+ // name of the dev container
4
+ "name": "nginx-ui-dev",
5
+ "build": {
6
+ // Path is relative to the devcontainer.json file.
7
+ "dockerfile": "Dockerfile"
8
+ }
9
+}
0 commit comments