Skip to content

Commit

Permalink
Merge pull request #4 from arnavrneo/express-backend
Browse files Browse the repository at this point in the history
feat/docker-integration
  • Loading branch information
arnavrneo authored Mar 1, 2024
2 parents 287a0ce + 78d2cb8 commit 343b9d8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions url-shortener/servers/express-js/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# TODO: error building; possible: node version
FROM node:21-alpine
LABEL authors="arnavrneo"

WORKDIR /app

COPY package*.json ./

RUN npm install

EXPOSE 5678

CMD [ "node", "index.js" ]

0 comments on commit 343b9d8

Please sign in to comment.