mirror of
https://github.com/alrayyes/docker-alpine-hackmyresume-bash
synced 2023-11-13 18:16:42 +00:00
9 lines
232 B
Docker
9 lines
232 B
Docker
|
FROM mhart/alpine-node:latest
|
||
|
MAINTAINER Ryan Kes <ryan@andthensome.nl>
|
||
|
|
||
|
# Install pygments (for syntax highlighting)
|
||
|
RUN apk update && apk add bash && rm -rf /var/cache/apk/*
|
||
|
|
||
|
# Install hackmyresume
|
||
|
RUN npm install -g hackmyresume
|