mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 09:01:04 -05:00
10 lines
433 B
Docker
10 lines
433 B
Docker
FROM ubuntu:20.04
|
|
ARG VERSION=1.0.4
|
|
ENV VERSION=${VERSION}
|
|
RUN apt-get update && apt-get install -y wget
|
|
RUN wget https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-gnu.tar.gz && \
|
|
tar -xzvf typos-v${VERSION}-x86_64-unknown-linux-gnu.tar.gz && \
|
|
mv typos /usr/local/bin
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
WORKDIR /github/workspace
|
|
ENTRYPOINT ["/bin/bash", "/entrypoint.sh"]
|