Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
decker
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
decker
decker
Commits
d92274ff
Commit
d92274ff
authored
Oct 31, 2020
by
Jan-Philipp Stauffert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Dockerfile-prebuilt
parent
7bcac602
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
10 deletions
+13
-10
Dockerfile-prebuilt
Dockerfile-prebuilt
+13
-10
No files found.
Dockerfile-prebuilt
View file @
d92274ff
FROM ubuntu:focal as decker
RUN apt-get update && apt-get install -y \
graphviz \
gnuplot \
rsync \
unzip \
zip
COPY decker /usr/bin/decker
#set the encoding on UTF-8, so the parser works correctly, german language is also added for umlaute
#source of fix: https://blog.mkowalski.net/2016/05/16/solving-locale-issues-with-docker-containers/
RUN apt-get install --reinstall -y locales && \
RUN apt-get
update && apt-get
install --reinstall -y locales && \
sed -i 's/# de_DE.UTF-8 UTF-8/de_DE.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen de_DE.UTF-8
ENV LANG de_DE.UTF-8
...
...
@@ -19,6 +10,18 @@ ENV LANGUAGE de_DE
ENV LC_ALL de_DE.UTF-8
RUN dpkg-reconfigure --frontend noninteractive locales
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y install tzdata
RUN apt-get install -y \
graphviz \
gnuplot \
rsync \
unzip \
zip
COPY decker /usr/bin/decker
WORKDIR /decker
ENTRYPOINT ["decker"]
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