We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49eba06 commit f6f1d52Copy full SHA for f6f1d52
multipass/Dockerfile
@@ -12,6 +12,7 @@ RUN npm install
12
# Copy tailwind config and CSS source
13
COPY tailwind.config.js ./
14
COPY web/static/css/input.css ./web/static/css/input.css
15
+COPY web/static/css/styles.css ./web/static/css/styles.css
16
17
# Build CSS
18
RUN npm run build:css
@@ -35,6 +36,7 @@ COPY . .
35
36
37
# Copy the built CSS from the css-builder stage
38
COPY --from=css-builder /app/web/static/css/tailwind.css ./web/static/css/tailwind.css
39
+COPY --from=css-builder /app/web/static/css/styles.css ./web/static/css/styles.css
40
41
# Build the application
42
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o multipass cmd/multipass/main.go
0 commit comments