Skip to content

Commit

Permalink
Fix unchanged timezone in Docker-Image with tzdata
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed May 16, 2022
1 parent 496b6f5 commit 5773c63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM alpine:3

LABEL author="MikMuellerDev"
LABEL version="0.0.27"
LABEL version="0.0.27-beta.1"

COPY ./app /app

Expand All @@ -16,7 +16,7 @@ RUN addgroup smarthome && adduser \

RUN mkdir -p /app/.config
RUN mkdir -p /app/.cache
RUN apk add curl bash && rm -rf /var/cache/apk/*
RUN apk add curl bash tzdata && rm -rf /var/cache/apk/*

COPY motd /etc/motd
COPY .bashrc /app/.bashrc
Expand All @@ -39,4 +39,4 @@ RUN homescript config set -n admin -t admin -a http://localhost

ENV SMARTHOME_LOG_LEVEL=INFO

ENTRYPOINT ["/app/smarthome"]
ENTRYPOINT ["/app/smarthome"]

0 comments on commit 5773c63

Please sign in to comment.