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 c68b2c2 commit 68a4a6aCopy full SHA for 68a4a6a
Dockerfile
@@ -1,5 +1,5 @@
1
# backend build
2
-FROM golang:1.23 as builderGo
+FROM golang:1.23 AS builder_go
3
4
USER root
5
WORKDIR /csgo-2d-demo-player
@@ -16,7 +16,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build \
16
main.go
17
18
# web build
19
-FROM node:lts-slim as builderNpm
+FROM node:lts-slim AS builder_npm
20
21
22
@@ -26,6 +26,8 @@ COPY web/package.json .
26
COPY web/package-lock.json .
27
RUN npm install
28
29
+COPY web/index.html .
30
+COPY web/vite.config.js .
31
COPY web/.env.production .
32
COPY web/public public
33
COPY web/src src
0 commit comments