mirror of
https://github.com/casjaysdevdocker/deno
synced 2025-09-17 17:56:13 -04:00
🦈🏠🐜❗ Initial Commit ❗🐜🦈🏠
This commit is contained in:
40
Dockerfile
Normal file
40
Dockerfile
Normal file
@@ -0,0 +1,40 @@
|
||||
FROM casjaysdevdocker/alpine:latest as build
|
||||
|
||||
RUN apk --no-cache add --update
|
||||
|
||||
COPY ./bin/. /usr/local/bin/
|
||||
COPY ./config/. /config/
|
||||
COPY ./data/. /data/
|
||||
|
||||
FROM scratch
|
||||
|
||||
ARG BUILD_DATE="$(date +'%Y-%m-%d %H:%M')"
|
||||
|
||||
LABEL org.label-schema.name="deno" \
|
||||
org.label-schema.description="containerized version of deno" \
|
||||
org.label-schema.url="https://github.com/casjaysdevdocker/deno/deno" \
|
||||
org.label-schema.vcs-url="https://github.com/casjaysdevdocker/deno/deno" \
|
||||
org.label-schema.build-date=$BUILD_DATE \
|
||||
org.label-schema.version=$BUILD_DATE \
|
||||
org.label-schema.vcs-ref=$BUILD_DATE \
|
||||
org.label-schema.license="WTFPL" \
|
||||
org.label-schema.vcs-type="Git" \
|
||||
org.label-schema.schema-version="latest" \
|
||||
org.label-schema.vendor="CasjaysDev" \
|
||||
maintainer="CasjaysDev <docker-admin@casjaysdev.com>"
|
||||
|
||||
ENV SHELL="/bin/bash" \
|
||||
TERM="xterm-256color" \
|
||||
HOSTNAME="casjaysdev-deno" \
|
||||
TZ="${TZ:-America/New_York}"
|
||||
|
||||
WORKDIR /root
|
||||
VOLUME ["/root","/config"]
|
||||
EXPOSE 9090
|
||||
|
||||
COPY --from=build /. /
|
||||
|
||||
HEALTHCHECK CMD [ "/usr/local/bin/entrypoint-deno.sh", "healthcheck" ]
|
||||
ENTRYPOINT [ "/usr/local/bin/entrypoint-deno.sh" ]
|
||||
CMD [ "/usr/bin/bash", "-l" ]
|
||||
|
Reference in New Issue
Block a user