mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 14:12:40 +00:00
21 lines
510 B
Docker
21 lines
510 B
Docker
FROM node:20-alpine
|
|
RUN apk --no-cache add git
|
|
|
|
ENV NODE_ENV=docker
|
|
|
|
# Create app directory
|
|
WORKDIR /usr/src/app
|
|
|
|
# Copy package.json into the image, then run yarn install
|
|
# This improves caching so we don't have to download the dependencies every time the code changes
|
|
COPY package.json ./
|
|
# --ignore-scripts tells yarn not to run postbuild. We run it explicitly later
|
|
RUN npm install --ignore-scripts
|
|
|
|
# Bundle app source and build application
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
EXPOSE 8000
|
|
CMD [ "npm", "start" ]
|