Parcourir la source

Corrected path to makefile in dockerfile

Vince Tse il y a 7 ans
Parent
commit
0bc14c554c
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      .docker/resume.dockerfile

+ 1 - 1
.docker/resume.dockerfile

@@ -14,7 +14,7 @@ ENV APP_NAME=resume
 # before switching to user we need to set permission properly
 # copy all files, except the ignored files from .dockerignore
 COPY . $HOME/$APP_NAME/
-COPY ./.docker/Makefile $HOME/$APP_NAME/
+COPY ./Makefile $HOME/$APP_NAME/
 RUN chown -R app:app $HOME/*
 
 USER app