docker
Some checks failed
Publish Docker Images / docker (push) Failing after 13s

This commit is contained in:
Lee
2023-11-16 12:32:38 +00:00
parent 68a10da2a6
commit cb99bb2032
6 changed files with 106 additions and 89 deletions

View File

@ -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" ]

View File

@ -12,9 +12,11 @@
},
"dependencies": {
"axios": "^1.6.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"server": "workspace:*",
"utils": "workspace:*",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
"typescript": "^5.2.2",
"utils": "workspace:*"
}
}