You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
Unfortunately, the https://github.com/elgs/filesync package (specifically sqlite3) is a CGO module, and needs to be compiled. Also the runtime operation of this binary requires static libraries that only appear to be present in installations that have glibc.
For example, changing the Dockerfile to pull from a different image:
#FROM busybox:ubuntu-14.04
FROM alpine:latest
MAINTAINER CausticLab
ENV FILESYNC_RELEASE v0.0.1
... will build, but running the image results in the following error:
standard_init_linux.go:178: exec user process caused "no such file or directory"
Entering the container and executing ldd /usr/local/bin/filesync reveals that this binary requires libraries, and these libraries are not present in the alpine base image.
One user suggested symlinking these libraries, but I didn't have luck with this.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Using alpine linux on live Dockerfile to reduce image size cause we don't need to compile it so we don't need
glibc
The text was updated successfully, but these errors were encountered: