Skip to content

Commit

Permalink
docs: add source code for nodejs example
Browse files Browse the repository at this point in the history
  • Loading branch information
danihodovic committed Oct 20, 2023
1 parent 8bc55d5 commit 7fca54e
Show file tree
Hide file tree
Showing 5 changed files with 1,309 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/nodejs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
12 changes: 12 additions & 0 deletions examples/nodejs/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# syntax=docker/dockerfile:1.3-labs
FROM node

WORKDIR /app/

COPY package.json package-lock.json /app/

RUN npm install

COPY server.js /app/

CMD node server.js
Loading

0 comments on commit 7fca54e

Please sign in to comment.