Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ISRIC
wsm.rest
Commits
b6cdeaed
Commit
b6cdeaed
authored
Dec 04, 2017
by
Luís de Sousa
Browse files
Improvements to the Dockerfile
parent
95019980
Changes
2
Hide whitespace changes
Inline
Side-by-side
.dockerignore
View file @
b6cdeaed
monoliths
wsm.rest.env
.git
.gitgnore
.project
.pydevproject
*/*.pyc
\ No newline at end of file
Dockerfile
View file @
b6cdeaed
...
...
@@ -4,9 +4,11 @@ MAINTAINER Luís de Sousa <luis.desousa@wur.nl>
# Not sure yet what this does
ENV
DEBIAN_FRONTEND noninteractive
RUN
apt-get update
RUN
apt-get
install
python-pip python-dev nginx
RUN
pip
install
-r
./requirements.txt
RUN
apt update
RUN
apt
-y
install
python-pip python-dev nginx
COPY
./requirements.txt /tmp/requirements.txt
RUN
pip
install
-r
/tmp/requirements.txt
# Is this needed?
#RUN mkdir -p /var/www/wsm.app
...
...
@@ -14,6 +16,7 @@ RUN pip install -r ./requirements.txt
COPY
configs/wsm.rest.nginx /etc/nginx/sites-enabled/wsm.rest
COPY
configs/wsm.rest.service /etc/systemd/system/wsm.rest.service
RUN
systemctl start myproject
RUN
systemctl
enable
myproject
RUN
systemctl restart nginx
\ No newline at end of file
# Apparently, these must be run
RUN
/bin/systemctl start myproject
RUN
/bin/systemctl
enable
myproject
RUN
/bin/systemctl restart nginx
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment