docker
All checks were successful
Publish Docker Images / docker (push) Successful in 1m6s

This commit is contained in:
Lee 2023-11-16 12:54:49 +00:00
parent f54f381ef6
commit df3e9ee1c9
4 changed files with 14 additions and 27 deletions

@ -29,12 +29,16 @@ jobs:
uses: docker/build-push-action@v4
with:
push: true
file: ./Dockerfile.Node
file: ./Dockerfile
tags: fascinated/proxy:node-latest
build-args: |
APP=node
- name: Build and Push (Proxy)
uses: docker/build-push-action@v4
with:
push: true
file: ./Dockerfile.Proxy
file: ./Dockerfile
tags: fascinated/proxy:proxy-latest
build-args: |
APP=proxy

@ -1,13 +1,15 @@
FROM fascinated/docker-images:node-pnpm-latest
ARG APP
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
# Copy the package.json
COPY apps/${APP}/package.json ./apps/${APP}/package.json
RUN pnpm install
@ -16,4 +18,4 @@ COPY . .
EXPOSE 3000
CMD [ "pnpm", "apps/node/index.js" ]
CMD [ "pnpm", "apps/${APP}/dist/index.js" ]

@ -1,19 +0,0 @@
FROM fascinated/docker-images:node-pnpm-latest
WORKDIR /usr/src/app
# Copy root package.json and lockfile
COPY package.json ./
COPY pnpm-lock.yaml ./
# Copy the proxy package.json
COPY apps/proxy/package.json ./apps/proxy/package.json
RUN pnpm install
# Copy app source
COPY . .
EXPOSE 3000
CMD [ "pnpm", "apps/proxy/index.js" ]

@ -15,7 +15,7 @@ services:
node-1:
image: fascinated/proxy:node-latest
container_name: Node 1
container_name: Node_1
restart: always
# Uncomment the ports if you want to access the node directly
#ports:
@ -27,7 +27,7 @@ services:
node-2:
image: fascinated/proxy:node-latest
container_name: Node 1
container_name: Node_2
restart: always
# Uncomment the ports if you want to access the node directly
#ports: