Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alpine images are not published #135

Open
slaci opened this issue Feb 22, 2024 · 2 comments
Open

Alpine images are not published #135

slaci opened this issue Feb 22, 2024 · 2 comments

Comments

@slaci
Copy link

slaci commented Feb 22, 2024

Hello,

I've just noticed that this repo has a dockerfile for alpine builds, but the alpine version of the images are not published ( docker hub nor github registry). There is an alpine tagged image on docker hub which is very old (2 years old).

My problem is that the default image is based on FROM scratch so it does not have any shell. For running the tool in CI a shell need to be attached which the alpine one would have.

Are there any plans to create alpine version of the images, or should I just build my own one?
Thanks!

@denys-kochetkov
Copy link

+1

@N7K4
Copy link

N7K4 commented Nov 20, 2024

You can fix it - when you use your own lokalise Dockerfile - as a workaround

FROM lokalise/lokalise-cli-2:alpine

# Install Alpine Linux packages
RUN apk update \
    && apk add --no-cache \
    curl \
    && rm -rf /var/cache/apk/*

# Update lokalise CLI via curl
RUN curl -sfL https://raw.githubusercontent.com/lokalise/lokalise-cli-2-go/master/install.sh | sh

...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants