mirror of
https://github.com/gosticks/web.git
synced 2026-08-17 22:40:20 +00:00
The docker container is based off of `node:8`, and includes ghr for GitHub Releases. Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
7 lines
264 B
Docker
7 lines
264 B
Docker
FROM node:8
|
|
|
|
# Install ghr for GitHub Releases: https://github.com/tcnksm/ghr
|
|
RUN wget https://github.com/tcnksm/ghr/releases/download/v0.12.0/ghr_v0.12.0_linux_amd64.tar.gz && \
|
|
tar -xzf ghr_*_linux_amd64.tar.gz && \
|
|
mv ghr_*_linux_amd64/ghr /usr/bin/ghr
|