An authentication server
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

16 行
441 B

  1. FROM alpine:edge
  2. RUN apk add --no-cache crystal shards openssl openssl-dev musl-dev libc6-compat zlib-dev sqlite-dev
  3. RUN crystal -v >&2
  4. COPY . /opt/app/
  5. RUN cd /opt/app && \
  6. shards
  7. ENV KEMAL_ENV test
  8. RUN cd /opt/app/ && crystal spec
  9. ENV KEMAL_ENV production
  10. RUN cd /opt/app/ && crystal build --mcpu $(gcc -march=native -Q --help=target|grep march|awk '{print $2}'|head -n 1) --release src/authenticate.cr
  11. CMD /opt/app/authenticate