mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 13:44:24 +00:00
12 lines
251 B
Docker
12 lines
251 B
Docker
FROM keybaseio/client:stable
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
bindfs \
|
|
git-lfs \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# `bindfs` requires the mountpoint to exist.
|
|
ARG MOUNTPOINT='/repos.rw'
|
|
RUN mkdir -p "$MOUNTPOINT"
|