Browse Source

Corrected path to makefile in dockerfile

Vince Tse 7 years ago
parent
commit
0bc14c554c
1 changed files with 1 additions and 1 deletions
  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