This commit is contained in:
@ -1,19 +1,19 @@
|
||||
FROM fascinated/docker-images:node-pnpm-latest
|
||||
|
||||
# Set the working directory to /app
|
||||
WORKDIR /app
|
||||
|
||||
# Copy the current directory contents into the container at /app
|
||||
COPY . /app
|
||||
|
||||
# Install any needed packages specified in package.json
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Copy root package.json and lockfile
|
||||
COPY package.json ./
|
||||
COPY pnpm-lock.yaml ./
|
||||
|
||||
# Copy the node package.json
|
||||
COPY apps/node/package.json ./apps/node/package.json
|
||||
|
||||
RUN pnpm install
|
||||
|
||||
# Make port 3000 available to the world outside this container
|
||||
|
||||
# Copy app source
|
||||
COPY . .
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
# Define environment variable
|
||||
ENV NODE_ENV=production
|
||||
|
||||
# Run app.js when the container launches
|
||||
CMD ["pnpm", "start"]
|
||||
|
||||
CMD [ "nnpm", "apps/node/index.js" ]
|
Reference in New Issue
Block a user