diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2023-11-04 21:41:37 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2023-11-04 21:41:37 +0000 |
| commit | 87221450b2acf4b8e69445b09f9c8d365c2416a1 (patch) | |
| tree | 54d554e7236900b351ecad1ccc934b54fcc263e3 /backend | |
| parent | 7d8cca54e548d2a85287fd2325db88f2697be55a (diff) | |
Add a load of shit
Diffstat (limited to 'backend')
| -rw-r--r-- | backend/Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..218cc8d --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,13 @@ +FROM node:18 + +WORKDIR /app + +COPY package.json ./ + +RUN npm install + +COPY . . + +EXPOSE 3000 + +CMD ["npm", "start"]
\ No newline at end of file |
