mirror of
https://github.com/ru-de/faq.git
synced 2024-11-08 19:51:01 +00:00
9788ccd5e1
* github actions ci * github actions ci * github actions ci * github actions ci * github actions ci * github actions ci * no deprecation * debug * debug * debug * fix * fix * fix * fix * fix * forgotten files * fix * fix * fix * fix * oganize everything related to ci in one folder * add check * fix path * get changed files * try this env * expected codes file moved * test check * test check * test check * docker for local test ci and fix dict download * local setup and some updates * rollback * right email
12 lines
465 B
Docker
12 lines
465 B
Docker
FROM ubuntu:18.04
|
|
MAINTAINER Evgenii Sokolov <ewgraf@gmail.com>
|
|
|
|
RUN apt-get -yqq update && apt-get install -y wget git locales
|
|
RUN cd /tmp && wget https://golang.org/dl/go1.15.5.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.15.5.linux-amd64.tar.gz
|
|
ENV PATH "$PATH:/usr/local/go/bin:/root/go/bin"
|
|
RUN locale-gen --no-purge en_US.UTF-8
|
|
RUN update-locale LANG=en_US.UTF-8
|
|
ENV LC_ALL "en_US.UTF-8"
|
|
COPY . /tmp/files/ci
|
|
RUN cd /tmp/files/ci && bash check-install.sh
|