From da6f9a0b8916499b1488efaf05a2fcc4ebf6f645 Mon Sep 17 00:00:00 2001 From: Cameron Rollheiser Date: Thu, 20 May 2021 12:13:25 -0400 Subject: [PATCH] Bump Dockerfile to Force Rebuild --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0c7ae49..18b8000 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,10 @@ +# Start from alpine FROM node:12.18-alpine +# Expose ports +ENV PORT 8080 +EXPOSE 8080 + # Install dumb-init # Set up deploy user RUN apk --no-cache --quiet add \ @@ -16,9 +21,6 @@ USER deploy COPY --chown=deploy:deploy package.json yarn.lock ./ RUN yarn install --frozen-lockfile && yarn cache clean -ENV PORT 8080 -EXPOSE 8080 - # Finally, add the rest of our app's code # (this is done at the end so that changes to our app's code # don't bust Docker's cache)