aboutsummaryrefslogtreecommitdiffstats
path: root/backend/Dockerfile
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2023-11-04 21:41:37 +0000
committerLeonardo Bishop <me@leonardobishop.com>2023-11-04 21:41:37 +0000
commit87221450b2acf4b8e69445b09f9c8d365c2416a1 (patch)
tree54d554e7236900b351ecad1ccc934b54fcc263e3 /backend/Dockerfile
parent7d8cca54e548d2a85287fd2325db88f2697be55a (diff)
Add a load of shit
Diffstat (limited to 'backend/Dockerfile')
-rw-r--r--backend/Dockerfile13
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