Archived
1
0

Add back travis since github actions is trash

This commit is contained in:
Anmol Sethi
2020-02-17 23:22:12 -05:00
parent 0d31a51eeb
commit eb3cf303ad
8 changed files with 62 additions and 201 deletions

View File

@ -3,14 +3,8 @@ FROM node:12
RUN apt-get update && apt-get install -y \
libxkbfile-dev \
libx11-dev \
libsecret-1-dev \
dumb-init
libsecret-1-dev
RUN curl -L https://github.com/mvdan/sh/releases/download/v3.0.1/shfmt_v3.0.1_linux_amd64 > /usr/local/bin/shfmt && chmod +x /usr/local/bin/shfmt
COPY entrypoint.sh /bin/entrypoint.sh
ENV PAGER=cat
ENV CI=true
ENTRYPOINT ["dumb-init", "/bin/entrypoint.sh"]
ENTRYPOINT ["/bin/bash", "-c"]