mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
14 lines
310 B
Docker
14 lines
310 B
Docker
FROM cypress/included:9.4.1
|
|
|
|
COPY --chown=1000 ./ /test
|
|
|
|
# mkcert
|
|
ENV MKCERT=1.4.2
|
|
RUN wget -O /usr/bin/mkcert "https://github.com/FiloSottile/mkcert/releases/download/v${MKCERT}/mkcert-v${MKCERT}-linux-amd64" \
|
|
&& chmod +x /usr/bin/mkcert
|
|
|
|
WORKDIR /test
|
|
RUN yarn install
|
|
ENTRYPOINT []
|
|
CMD ["cypress", "run"]
|