entrypoint.sh sets environment variables correctly. Dockerfile has all necessary steps, still needs to be cleaned up

This commit is contained in:
Ella Schwarz
2020-12-01 13:37:56 -08:00
committed by Ella Schwarz
parent db7fafb4ac
commit f5ae2e0bfd
2 changed files with 1 additions and 4 deletions

View File

@@ -10,6 +10,7 @@ MAINTAINER jacobgadikian@gmail.com
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y \
curl \
git \
sudo

View File

@@ -1,4 +0,0 @@
# adapted from https://stackoverflow.com/questions/55921914/how-to-source-a-script-with-environment-variables-in-a-docker-build-process
#!/bin/sh
. ./env.sh
exec "$@"