Looking for syntax error on line dockerfile line 7
This commit is contained in:
parent
65b3fdd617
commit
eff8f83eae
@ -31,7 +31,8 @@ RUN \
|
||||
apk add --update --no-cache --virtual=.build-dependencies \
|
||||
curl \
|
||||
ca-certificates && \
|
||||
printf '%s\n' "-----BEGIN PUBLIC KEY-----" \
|
||||
printf '%s\n' \
|
||||
"-----BEGIN PUBLIC KEY-----" \
|
||||
"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApZ2u1KJKUu/fW4A25y9m" \
|
||||
"y70AGEa/J3Wi5ibNVGNn1gT1r0VfgeWd0pUybS4UmcHdiNzxJPgoWQhV2SSW1JYu" \
|
||||
"tOqKZF5QSN6X937PTUpNBjUvLtTQ1ve1fp39uf/lEXPpFpOPL88LKnDBgbh7wkCp" \
|
||||
@ -49,7 +50,9 @@ RUN \
|
||||
"${AlpineGlibcI18nPackageFilename}" && \
|
||||
rm -v "/etc/apk/keys/sgerrand.rsa.pub" && \
|
||||
/usr/glibc-compat/bin/localedef --force --inputfile POSIX --charmap UTF-8 "${GlibcLanguage}" || true && \
|
||||
printf '%s\n' "export LANG=${GlibcLanguage}" "export TZ=${TimeZone}" >> /etc/profile.d/locale.sh && \
|
||||
printf '%s\n' \
|
||||
"export LANG=${GlibcLanguage}" \
|
||||
"export TZ=${TimeZone}" >> /etc/profile.d/locale.sh && \
|
||||
mkdir -p /opt /factorio && \
|
||||
curl -sSL "${FactorioDownloadURL}" -o ${FactorioFileName} && \
|
||||
tar -x -f ${FactorioFileName} --directory /opt && \
|
||||
|
Reference in New Issue
Block a user