mirror of
https://github.com/status-im/actions-hugo.git
synced 2025-01-12 22:04:10 +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" ]
|