blob: dc0a3a3688a2798dc6baabc5b7f8c389144d7d52 [file] [log] [blame]
Aline Gondim Santos05586e32022-06-22 17:16:00 -04001FROM ubuntu:22.04
2
3USER root
4
5RUN apt-get clean && \
6 apt-get update && \
7 apt-get install -y -o Acquire::Retries=2 \
8 curl \
9 zip
10
11RUN curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
12
13ENV PATH="${HOME}/tx:${PATH}"