Compare commits

...

2 Commits

Author SHA1 Message Date
77908d1ae7 Update alpine Docker tag to v3.18.4
All checks were successful
ci / docker (pull_request) Successful in 15s
2023-10-09 16:00:23 +02:00
9b7e2151ec adds timezone support (#14)
All checks were successful
ci / docker (push) Successful in 16s
#### 📖 Summary

- adds tzdate packaqge
- add TZ env

#### 📑 Test Plan

> 💡 Select your test plan for the code changes.

- [x] CI pipeline tests
- [ ] Custom test
- [ ] No test plan

##### Details / Justification

<!-- Add your test details or justification for missing tests here. -->

#### 📚 Additional Notes

<!-- A place for additional detail notes. -->

Reviewed-on: #14
2023-10-09 16:00:04 +02:00

View File

@ -1,4 +1,4 @@
FROM alpine:3.18.2
FROM alpine:3.18.4
# Set labels manually, each build service differs in used or predefined labels.
LABEL maintainer="OCram85"
@ -29,11 +29,12 @@ ENV LOGLEVEL "Info"
ENV MAXCLIENTS "600"
ENV FILTER_FILE "/app/filter"
ENV TZ "Europe/Berlin"
# get existing packages
# curl for healthchecks and debugging
RUN apk add --no-cache \
tinyproxy curl
tinyproxy curl tzdata
COPY entrypoint.sh /app/entrypoint.sh