You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
333 B
18 lines
333 B
FROM repository.241210.com/repository/base/alpine:3.9
|
|
|
|
MAINTAINER mencius
|
|
|
|
ENV LANG C.UTF-8
|
|
ENV LANGUAGE C.UTF-8
|
|
|
|
COPY web/conf.yaml /usr/local/bin/conf.yaml
|
|
COPY web/gy-uuos-web /usr/local/bin/
|
|
|
|
RUN chmod a+x /usr/local/bin/gy-uuos-web
|
|
RUN apk add --no-cache tzdata
|
|
|
|
EXPOSE 8080
|
|
|
|
WORKDIR /usr/local/bin/
|
|
|
|
ENTRYPOINT ["gy-uuos-web"]
|