aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index a7900dbee..e46da8ac9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
1# Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture 1# Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture
2 2
3FROM node:14.17.6-buster as builder 3FROM docker.io/library/node:14.17.6-buster as builder
4 4
5# TODO: Need to setup a non-root user for security purposes 5# TODO: Need to setup a non-root user for security purposes
6 6
@@ -35,7 +35,7 @@ RUN npm run build
35 35
36# -------------------------------------------------------------------------------------------- 36# --------------------------------------------------------------------------------------------
37 37
38FROM busybox 38FROM docker.io/library/busybox
39 39
40# TODO: Need to setup a non-root user for security purposes 40# TODO: Need to setup a non-root user for security purposes
41 41