10884-dockerify #6

Merged
mravi merged 14 commits from 10884-dockerify into master 2022-09-19 08:27:32 +00:00
2 changed files with 6 additions and 0 deletions
Showing only changes of commit a91d2b16b6 - Show all commits

View file

@ -44,6 +44,7 @@ RUN addgroup -S app && adduser -S app -G app
ENV HOME=/home/app
ENV APP_HOME=/home/app/app
RUN mkdir $APP_HOME
RUN mkdir $APP_HOME/staticfiles
WORKDIR $APP_HOME
# install dependencies

View file

@ -12,4 +12,9 @@ server {
proxy_redirect off;
}
location /static/ {
alias /home/app/app/staticfiles/;
}
}