Skip to content

Commit

Permalink
docker: add labels
Browse files Browse the repository at this point in the history
  • Loading branch information
KFERMercer committed Jan 2, 2025
1 parent 157cb42 commit eb434e0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@

FROM alpine:latest AS mother

LABEL org.opencontainers.image.authors="KFERMercer <https://github.com/KFERMercer>"
LABEL org.opencontainers.image.description="A simple webcam capturer for CB & SC."
LABEL org.opencontainers.image.title="ctbcap"
LABEL org.opencontainers.image.url="https://github.com/KFERMercer/chaturbate-grabber"
LABEL org.opencontainers.image.source="https://raw.githubusercontent.com/KFERMercer/chaturbate-grabber/refs/heads/master/Dockerfile"
LABEL org.opencontainers.image.licenses="GPL-3.0-or-later"

RUN apk add --no-cache curl tini tzdata

RUN <<EOT
mkdir -p /save /log
chmod 777 /save /log
EOT
RUN mkdir -p -m 777 /save /log

FROM mother AS fat

Expand Down

0 comments on commit eb434e0

Please sign in to comment.