FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
octocatalog-diff/Dockerfile at master · github/octocatalog-diff · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
github
/
octocatalog-diff
Public
Notifications
You must be signed in to change notification settings
Fork
96
Star
252
Code
Issues
27
Pull requests
14
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
octocatalog-diff
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
20 lines (18 loc) · 662 Bytes
Breadcrumbs
octocatalog-diff
/
Dockerfile
Copy path
File metadata and controls
20 lines (18 loc) · 662 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ARG
RUBY_VERSION=
"2.6"
FROM
ruby:${RUBY_VERSION} as ruby
ARG
RUBY_VERSION
ENV
RUBY_VERSION=
"${RUBY_VERSION}"
RUN
rm -rf $GEM_HOME $BUNDLE_PATH $BUNDLE_BIN $BUNDLE_APP_CONFIG
RUN
apt-get update && apt-get install -y cmake openssl libssl-dev
RUN
sed -i
''
-e
's/CipherString = DEFAULT@SECLEVEL=2/CipherString = DEFAULT@SECLEVEL=1/g'
/etc/ssl/openssl.cnf
RUN
sed -i
''
-e
's/MinProtocol = TLSv1.2/MinProtocol = TLSv1/g'
/etc/ssl/openssl.cnf
FROM
scratch AS app
ARG
PUPPET_VERSION
ENV
PUPPET_VERSION=
"${PUPPET_VERSION}"
COPY
--from=ruby / /
WORKDIR
/app
ENV
LANG=
"C.UTF-8"
COPY
. .
#
RUN gem install bundler -v 1.17.2
RUN
script/bootstrap
CMD
[
"/app/script/cibuild"
]
Back
|
FazBrowse Home
|
New Git URL