all repos — homestead @ 6b6a67390b7366678883f74faf0747c794998448

Code for my website

embed files

Alan Pearce
commit

6b6a67390b7366678883f74faf0747c794998448

parent

59227d920697c1cc8e5457f9532b3e8486900eb5

1 file changed, 1 insertion(+), 2 deletions(-)

changed files
M DockerfileDockerfile
@@ -16,7 +16,7 @@ RUN go run ./cmd/build
RUN cp -r static/.well-known static/* public ENV GOOS=linux GOARCH=amd64 CGO_ENABLED=0 -RUN go build ./cmd/server/ +RUN go build server.go # Final stage for app image FROM gcr.io/distroless/static
@@ -25,7 +25,6 @@ WORKDIR /app
# Copy built application COPY --link config.toml . -COPY --from=builder /app/public public COPY --from=builder /app/server server # Start the server by default, this can be overwritten at runtime