Skip to content

Commit

Permalink
Merge branch 'mkody:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
zen-tools authored May 15, 2024
2 parents 09f453a + 63028a6 commit f10b372
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
FROM alpine:latest
FROM docker.io/library/alpine:3.18
LABEL maintainer "[email protected]"

RUN addgroup -S icecast && \
adduser -S icecast

RUN apk add --update \
icecast \
mailcap && \
rm -rf /var/cache/apk/*
RUN apk add --no-cache icecast mailcap

COPY docker-entrypoint.sh /entrypoint.sh
COPY ./docker-entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

RUN mkdir -p /var/log/icecast
RUN chown icecast:icecast /var/log/icecast

EXPOSE 8000
VOLUME ["/var/log/icecast"]
ENTRYPOINT ["/entrypoint.sh"]
Expand Down

0 comments on commit f10b372

Please sign in to comment.