Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Julien David
rdos
Commits
f4402e22
Commit
f4402e22
authored
Sep 30, 2020
by
Ismail Moumni
Browse files
Adding Dockerfile in server
parent
a0f38c1e
Pipeline
#1018
failed with stage
in 15 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
softwares/server/Dockerfile
0 → 100644
View file @
f4402e22
# base image
FROM
alpine:latest
# maintainer
LABEL
maintainer="david@lipn.fr"
# variable
ENV
AUTHOR Docker
ADD
database/ /usr/local/server/
ADD
server/ /usr/local/server
WORKDIR
/usr/local/server/
# Dépendances
RUN
apk update
RUN
apk add python3
RUN
apk add py-pip
RUN
pip
install
mysql-connector-python
RUN
pip
install
get_docker_secret
RUN
pip
install
docker
CMD
["python3", "server.py"]
# TO BUILD the image from parent directory "Softwares" Command : docker build --tag "tag" -f ./server/Dockerfile .
# TO run the build in DOCKER : docker run --name "name" ser-app
Write
Preview
Markdown
is supported
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