mirror of
https://github.com/status-im/actions-hugo.git
synced 2025-01-27 13:05:41 +00:00
12 lines
179 B
Docker
12 lines
179 B
Docker
|
FROM node:12-slim
|
||
|
|
||
|
WORKDIR /repo
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get -y install --no-install-recommends \
|
||
|
git \
|
||
|
bash && \
|
||
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
CMD [ "bash" ]
|