Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
synergy
o3skim
Commits
81614247
Commit
81614247
authored
Aug 13, 2020
by
BorjaEst
Browse files
Added Dockerfile for containerisation
parent
c60113df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Dockerfile
0 → 100644
View file @
81614247
# Dockerfile has three Arguments: base, tag, branch
# base - base image (default: debian)
# tag - tag for base mage (default: stable-slim)
# branch - user repository branch to clone (default: master)
#
# To build the image:
# $ docker build -t <dockerhub_user>/<dockerhub_repo> --build-arg arg=value .
# or using default args:
# $ docker build -t <dockerhub_user>/<dockerhub_repo> .
# set the base image. default is debian, optional ubuntu
ARG
base=debian
# set the tag (e.g. latest, stable, stable-slim : for debian)
ARG
tag=stable-slim
# Base image, e.g. debian:stable-slim
FROM
${base}:${tag}
LABEL
maintainer='Borja Esteban'
# What branch to clone (!)
ARG
branch=master
# Which user and group to use
ARG
user=worker
ARG
group=standard
# Install system updates and tools
ENV
DEBIAN_FRONTEND=noninteractive
RUN
apt-get update
&&
apt-get
install
-y
--no-install-recommends
\
# Install system updates and tools
ca-certificates \
git && \
# Clean up & back to dialog front end
apt-get autoremove -y && \
apt-get clean -y && \
rm -rf /var/lib/apt/lists/*
ENV
DEBIAN_FRONTEND=dialog
# Install user app:
RUN
git clone
--depth
1
-b
${
branch
}
https://github.com/BorjaEst/cicd.git app
&&
\
# Clean up
rm -rf /root/.cache/pip/* && \
rm -rf /tmp/*
WORKDIR
/app
# Set environments
ENV
LANG C.UTF-8
# Ports to expose
EXPOSE
8443
EXPOSE
8080
# Change user context and drop root privileges
RUN
groupadd
-r
${
group
}
&&
\
useradd
--no-log-init
-r
-g
${
group
}
${
user
}
USER
${user}
# Start default script
ENTRYPOINT
[ "/app/main" ]
CMD
[ "" ]
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