diff options
| author | Max Resnick <max@ofmax.li> | 2021-11-20 21:45:51 -0800 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2021-11-28 22:21:29 -0800 |
| commit | 7a7500702480ef5ada890ff697b32126d4c1bb58 (patch) | |
| tree | c3f7208d65febe04ccf5c6558528dbcbf0525dcc /src/thelounge/Dockerfile | |
| parent | fa0735617fa9840c2b79477623c001bbc5af1a0e (diff) | |
| download | grumpy-containers-7a7500702480ef5ada890ff697b32126d4c1bb58.tar.gz | |
remove images no longer used, gitlab.ci
Diffstat (limited to 'src/thelounge/Dockerfile')
| -rw-r--r-- | src/thelounge/Dockerfile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/thelounge/Dockerfile b/src/thelounge/Dockerfile deleted file mode 100644 index 3cfdc02..0000000 --- a/src/thelounge/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -ARG NODE_VERSION=v12.16.2 -FROM registry.gitlab.com/grumps/grumpy-containers/base:v0.0.3-buster-builder as builder -ARG NODE_VERSION -RUN mkdir -p /opt/build/nodejs \ - && curl "https://nodejs.org/dist/${NODE_VERSION}/node-${NODE_VERSION}-linux-x64.tar.xz" -o "/opt/build/node-${NODE_VERSION}-linux-x64.tar.xz" \ - && tar -xJvf "/opt/build/node-${NODE_VERSION}-linux-x64.tar.xz" -C /opt/build/nodejs --strip-components=1 -RUN mkdir -p /opt/build/yarn \ - && curl -Lo /opt/build/yarn/latest.tar.gz https://yarnpkg.com/latest.tar.gz \ - && tar zvxf /opt/build/yarn/latest.tar.gz -C /opt/build/yarn --strip-components=1 - -FROM registry.gitlab.com/grumps/grumpy-containers/base:v0.0.3 -COPY --from=builder /opt/build/nodejs /opt/lib/nodejs -COPY --from=builder /opt/build/yarn /opt/lib/yarn -ENV PATH "$PATH:/opt/lib/yarn/bin:/opt/lib/nodejs/bin" |