Skip to content

Commit

Permalink
chore: deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
guimroque committed Jul 10, 2024
1 parent fa9ba69 commit 6cc19d8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
FROM arm64v8/node:18.18.2-buster-slim
FROM arm64v8/node:18.18.2-alpine

# Create app directory
WORKDIR /gateway
ADD . /gateway

# Install node-gyp
RUN yarn global add node-gyp && yarn install --frozen-lockfile

# Install app dependencies
RUN yarn install

Expand All @@ -14,4 +17,4 @@ RUN yarn build
EXPOSE 4444

# Start the application
ENTRYPOINT ["yarn", "start"]
ENTRYPOINT ["yarn", "start"]

0 comments on commit 6cc19d8

Please sign in to comment.