mirror of
https://github.com/directus/directus.git
synced 2026-02-08 22:04:59 -05:00
16 lines
228 B
Docker
16 lines
228 B
Docker
FROM docker:stable
|
|
|
|
RUN \
|
|
apk update && \
|
|
apk upgrade && \
|
|
apk add bash
|
|
|
|
COPY ./rootfs/ /
|
|
|
|
RUN \
|
|
chmod +x /usr/bin/lib/argsf && \
|
|
chmod +x /usr/bin/entrypoint && \
|
|
chmod +x /usr/bin/semver
|
|
|
|
ENTRYPOINT ["entrypoint"]
|