lass="text grey right age">vor 2 Jahren 3395 058f31828c first commit vor 2 Jahren 3429 058f31828c first commit vor 2 Jahren 3430 058f31828c first commit vor 2 Jahren 3431 058f31828c first commit vor 2 Jahren 3433 058f31828c first commit vor 2 Jahren 3439 058f31828c first commit vor 2 Jahren 3440 058f31828c first commit vor 2 Jahren 3455 058f31828c first commit vor 2 Jahren 3456 058f31828c first commit vor 2 Jahren 3456_fsm 058f31828c first commit vor 2 Jahren 3456_vm 058f31828c first commit vor 2 Jahren 3466 058f31828c first commit vor 2 Jahren 3467 058f31828c first commit vor 2 Jahren 3468 058f31828c first commit vor 2 Jahren 3501 058f31828c first commit vor 2 Jahren 3502 058f31828c first commit vor 2 Jahren 3503 058f31828c first commit vor 2 Jahren 3534 058f31828c first commit vor 2 Jahren 3541 058f31828c first commit vor 2 Jahren 3541_fsm 058f31828c first commit vor 2 Jahren 3541_vm 058f31828c first commit vor 2 Jahren 3542 058f31828c first commit vor 2 Jahren 3574 058f31828c first commit vor 2 Jahren 3575 058f31828c first commit vor 2 Jahren 3576 058f31828c first commit vor 2 Jahren 3596 058f31828c first commit vor 2 Jahren 3597 058f31828c first commit vor 2 Jahren 3598 058f31828c first commit vor 2 Jahren 3599 058f31828c first commit vor 2 Jahren 3600 058f31828c first commit vor 2 Jahren 3600_fsm 058f31828c first commit vor 2 Jahren 3600_vm 058f31828c first commit vor 2 Jahren 3601 058f31828c first commit vor 2 Jahren 3601_fsm 058f31828c first commit vor 2 Jahren 3601_vm 058f31828c first commit vor 2 Jahren 3602 058f31828c first commit vor 2 Jahren 3602_fsm 058f31828c first commit vor 2 Jahren 3602_vm 058f31828c first commit vor 2 Jahren 3603 058f31828c first commit vor 2 Jahren 3603_fsm 058f31828c first commit vor 2 Jahren 3603_vm 058f31828c first commit vor 2 Jahren 3604 058f31828c first commit vor 2 Jahren 3605 058f31828c first commit vor 2 Jahren 3606 058f31828c first commit vor 2 Jahren 3607 058f31828c first commit vor 2 Jahren 3608 058f31828c first commit vor 2 Jahren 3609 058f31828c first commit vor 2 Jahren 3712 058f31828c first commit vor 2 Jahren 3764 058f31828c first commit vor 2 Jahren 3764_fsm 058f31828c first commit vor 2 Jahren 3764_vm 058f31828c first commit vor 2 Jahren 3766 058f31828c first commit vor 2 Jahren 3767 058f31828c first commit vor 2 Jahren 3997 058f31828c first commit vor 2 Jahren 4143 058f31828c first commit vor 2 Jahren 4144 058f31828c first commit vor 2 Jahren 4145 058f31828c first commit vor 2 Jahren 4146 058f31828c first commit vor 2 Jahren 4147 058f31828c first commit vor 2 Jahren 4148 058f31828c first commit vor 2 Jahren 4149 058f31828c first commit vor 2 Jahren 4150 058f31828c first commit vor 2 Jahren 4151 058f31828c first commit vor 2 Jahren 4152 058f31828c first commit vor 2 Jahren 4153 058f31828c first commit vor 2 Jahren 4154 058f31828c first commit vor 2 Jahren 4155 058f31828c first commit vor 2 Jahren 4156 058f31828c first commit vor 2 Jahren 4157 058f31828c first commit vor 2 Jahren 4158 058f31828c first commit vor 2 Jahren 4159 058f31828c first commit vor 2 Jahren 4160 058f31828c first commit vor 2 Jahren 4161 058f31828c first commit vor 2 Jahren 4162 058f31828c first commit vor 2 Jahren 4163 058f31828c first commit vor 2 Jahren 4164 058f31828c first commit vor 2 Jahren 4165 058f31828c first commit vor 2 Jahren 4166 058f31828c first commit vor 2 Jahren 4167 058f31828c first commit vor 2 Jahren 4168 058f31828c first commit vor 2 Jahren 4169 058f31828c first commit vor 2 Jahren 4170 058f31828c first commit vor 2 Jahren 4171 058f31828c first commit vor 2 Jahren 4172 058f31828c first commit vor 2 Jahren 4173 058f31828c first commit vor 2 Jahren 4174 058f31828c first commit vor 2 Jahren 5002 058f31828c first commit vor 2 Jahren 548 058f31828c first commit vor 2 Jahren 549 058f31828c first commit vor 2 Jahren 6102 058f31828c first commit vor 2 Jahren 6104 058f31828c first commit vor 2 Jahren 6106 058f31828c first commit vor 2 Jahren 6110 058f31828c first commit vor 2 Jahren 6111 058f31828c first commit vor 2 Jahren 6112 058f31828c first commit vor 2 Jahren 6113 058f31828c first commit vor 2 Jahren 6117 058f31828c first commit vor 2 Jahren 826 058f31828c first commit vor 2 Jahren 827 058f31828c first commit vor 2 Jahren 828 058f31828c first commit vor 2 Jahren PG_VERSION 058f31828c first commit vor 2 Jahren pg_filenode.map 058f31828c first commit vor 2 Jahren tum/network_report_server - Gogs: Simplico Git Service

No Description

Dockerfile 1.2KB

123456789101112131415161718192021222324252627282930
  1. # syntax=docker/dockerfile:1
  2. FROM python:3 as base
  3. ENV PYTHONDONTWRITEBYTECODE=1
  4. ENV PYTHONUNBUFFERED=1
  5. RUN apt-get update && apt-get install apt-transport-https
  6. RUN apt-get install -y libjpeg62 libjpeg62-turbo-dev zlib1g-dev gettext entr poppler-utils gettext xfonts-thai vim
  7. RUN wget ftp://ftp.psu.ac.th/pub/thaifonts/sipa-fonts/*ttf -P /usr/share/fonts/truetype/thai
  8. COPY fonts/*ttf /usr/share/fonts/truetype/thai/
  9. RUN \
  10. echo "Installing Node and Yarn" && \
  11. echo "deb https://deb.nodesource.com/node_8.x jessie main" > /etc/apt/sources.list.d/nodesource.list && \
  12. wget -qO- https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add - && \
  13. echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \
  14. wget -qO- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
  15. apt-get update && \
  16. apt-get install -yqq nodejs yarn npm && \
  17. npm install -g nodemon mjml && \
  18. rm -rf /var/lib/apt/lists/*
  19. FROM base as install_package
  20. WORKDIR /code
  21. COPY requirements.txt /code/
  22. RUN pip install -r requirements.txt
  23. COPY app /code/
  24. #RUN chmod a+x server-entrypoint.sh
  25. #RUN chmod a+x worker-entrypoint.sh