aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-04 18:25:29 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-04 18:25:29 +0530
commit8092992523b7b42d320b2653d3dbac81c57bd782 (patch)
tree46dbbf67cc9b8b6e5b16d4f315b2e7231ded91f6 /Dockerfile
parentchore: Ensure stored settings conform to type-safety (diff)
downloadferdium-app-8092992523b7b42d320b2653d3dbac81c57bd782.tar.gz
ferdium-app-8092992523b7b42d320b2653d3dbac81c57bd782.tar.zst
ferdium-app-8092992523b7b42d320b2653d3dbac81c57bd782.zip
Use namespaces when pulling docker base images since this is reqd for podman
Diffstat (limited to 'Dockerfile')
-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