Files
web/docker/Dockerfile
T
Mcat12 249393d2f4 Use a custom docker build container
The docker container is based off of `node:8`, and includes ghr for
GitHub Releases.

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
2019-02-22 19:56:41 -08:00

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