Skip to content

Commit

Permalink
chore: add TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Dec 20, 2023
1 parent 1d50359 commit 37a9195
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,16 @@ RUN go mod download
# Copy the code into the container
COPY . .

# TODO: build react app?

# Build the application
RUN go build -o main

# Start a new, final image to reduce size.
FROM alpine as final

# Copy the binaries and entrypoint from the builder image.
# TODO: update for React
COPY --from=builder /build/main /bin/
COPY --from=builder /build/public /public/
COPY --from=builder /build/views /views/
Expand Down

0 comments on commit 37a9195

Please sign in to comment.