mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2025-05-05 06:45:28 +08: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" ]
|