Browse Source
Merge pull request #576 from colinin/5.2.0
fix(Dockerfile): fix case error
pull/580/head
yx lin
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
aspnet-core/services/LY.MicroService.WebhooksManagement.HttpApi.Host/Dockerfile
|
|
|
@ -5,8 +5,8 @@ WORKDIR /app |
|
|
|
COPY . /app |
|
|
|
|
|
|
|
## Beijing time, self replacement |
|
|
|
env tz=asia/shanghai |
|
|
|
run ln -snf /usr/share/zoneinfo/$tz /etc/localtime && echo '$tz' > /etc/timezone |
|
|
|
ENV TZ=Asia/Shanghai |
|
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone |
|
|
|
|
|
|
|
EXPOSE 80/tcp |
|
|
|
VOLUME [ "./app/Logs" ] |
|
|
|
|