seek-tune/Dockerfile

33 lines
No EOL
568 B
Docker

# build react
FROM node:20-alpine AS build_react_stage
RUN mkdir -p /home/react
WORKDIR /home/react
COPY client/package.json ./
RUN npm install
COPY client/ ./
ARG REACT_APP_BACKEND_URL
ENV REACT_APP_BACKEND_URL=${REACT_APP_BACKEND_URL}
RUN npm run build
# build go
FROM golang:1.21.6
WORKDIR /home/seek-tune
COPY server/go.mod server/go.sum ./
RUN go mod download
COPY server/ ./
ENV ENV=production
RUN mkdir -p static
COPY --from=build_react_stage /home/react/build static
RUN go build -o seek-tune
EXPOSE 5000
CMD [ "/home/seek-tune/seek-tune", "serve" ]