diff options
Diffstat (limited to 'ci/Dockerfile')
| -rw-r--r-- | ci/Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ci/Dockerfile b/ci/Dockerfile new file mode 100644 index 0000000..9058561 --- /dev/null +++ b/ci/Dockerfile @@ -0,0 +1,13 @@ +FROM arm64v8/ubuntu:noble +MAINTAINER Olo Platform Evolution #eng-platform-evolution-help +ADD tmp/docker-start.tar.xz / +ARG OLO_USERNAME=root +ARG OLO_GROUPNAME=root +ARG OLO_UID=0 +ARG OLO_GID=0 +RUN data/install-root.sh +USER ${OLO_UID}:${OLO_GID} +RUN data/install-user-sbcl.sh +ENTRYPOINT [ "data/start_app.sh" ] +#ENTRYPOINT [ "/bin/bash", "-l", "-c" ] +CMD [] |
