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

2 years ago
  1. FROM repository.241210.com/repository/base/alpine:3.9
  2. MAINTAINER mencius
  3. ENV LANG C.UTF-8
  4. ENV LANGUAGE C.UTF-8
  5. COPY web/conf.yaml /usr/local/bin/conf.yaml
  6. COPY web/gy-uuos-web /usr/local/bin/
  7. RUN chmod a+x /usr/local/bin/gy-uuos-web
  8. RUN apk add --no-cache tzdata
  9. EXPOSE 8080
  10. WORKDIR /usr/local/bin/
  11. ENTRYPOINT ["gy-uuos-web"]