Browse Source

Merge pull request #28 from vincetse/master

Corrected path to makefile in dockerfile
Mark Szepieniec 7 years ago
parent
commit
6ed7c36a02
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
 # before switching to user we need to set permission properly
 # copy all files, except the ignored files from .dockerignore
 # copy all files, except the ignored files from .dockerignore
 COPY . $HOME/$APP_NAME/
 COPY . $HOME/$APP_NAME/
-COPY ./.docker/Makefile $HOME/$APP_NAME/
+COPY ./Makefile $HOME/$APP_NAME/
 RUN chown -R app:app $HOME/*
 RUN chown -R app:app $HOME/*
 
 
 USER app
 USER app