portfolio/Dockerfile
darius 9faa96ef93
All checks were successful
build and deploy portfolio / build (push) Successful in 38s
build and deploy portfolio / publish-portfolio (push) Successful in 3s
build and deploy portfolio / publish-docs (push) Successful in 5s
improved env in deploy
2025-02-25 21:54:10 +01:00

32 lines
617 B
Docker

# Use an official Golang runtime as a parent image
FROM golang:latest as build
# Set the working directory to /app
WORKDIR .
# Copy the current directory contents into the container at /app
COPY . .
# Download and install any required dependencies
RUN go mod download
# Generate orm
RUN go generate ./database/ent
# Build the Go app
RUN go build .
FROM gcr.io/distroless/base-debian12
COPY --from=build /go/portfolio .
COPY .env .
ADD ./web/assets ./web/assets
# Expose port 8080 for incoming traffic
EXPOSE 4000
EXPOSE 4001
# Define the command to run the app when the container starts
CMD ["./portfolio"]