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
Checking cache...
- foo/tcp-proxy: Error checking cache.
getting hash for artifact "foo/tcp-proxy": getting dependencies for "foo/tcp-proxy": file pattern [<<EOF] must match at least one file
Information
FROM alpine
RUN apk add --update bash socat
COPY <<"EOF" /usr/local/bin/tcp-proxy
if [ "$#" -ne 2 ]; then
echo "usage: "bash /usr/local/bin/tcp-proxy host port" exit 1fiHOST="$1"PORT="$2"LISTEN_PORT=${LISTEN_PORT:-${PORT}}echo "relay TCP/IP connections on :${LISTEN_PORT} to ${HOST}:${PORT}"exec socat TCP-LISTEN:${LISTEN_PORT},fork,reuseaddr TCP:${HOST}:${PORT}EOFENTRYPOINT ["bash", "/usr/local/bin/tcp-proxy"]
The text was updated successfully, but these errors were encountered:
Expected behavior
Should just build, since
docker build
works fineActual behavior
Information
The text was updated successfully, but these errors were encountered: