aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-14 00:24:19 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-14 00:24:19 +0000
commit6072e6c583dd9122ba670db555a075654a852e62 (patch)
treeead89df29d1efb2a9f60b4bed8dec41ce9b38050 /Dockerfile
parente1ff3b44a55349dad8c07de690ca86c984c91469 (diff)
Move git hash fetch to nuxt-prepare
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index bf50ea0..e4f6b1b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,9 @@
FROM node:20-slim as base
+RUN apt-get update && \
+ apt-get install -y git && \
+ apt-get clean
+
ENV NODE_ENV=production
WORKDIR /src