Dockerfile ENTRYPOINT脚本:现有文件中的“没有此类文件或目录”

问题描述 投票:1回答:2

我写了一个Dockerfile,目的是在Docker容器中托管游戏服务器,但是复制到容器中的shell脚本(“run.sh”)没有看到它应该运行的ELF可执行文件。

我已配置我的Dockerfile,使其使用最新版本的ubuntu包,下载并将游戏服务器的文件提取到新文件夹,然后删除.zip存档。它成功构建,但当我尝试使用由三行组成的简单shell脚本运行它时:

润.是:

#!/usr/bin/env bash
pwd
ls
exec ./TerrariaServer.bin.x86 -steam -config ./config.txt

它总是出现以下错误:./run.sh: line 4: /ServerFiles/TerrariaServer.bin.x86: No such file or directory

pwdls确认TerrariaServer.bin.x86存在于/ServerFiles/目录中:

/ServerFiles
FNA.dll
FNA.dll.config
Mono.Posix.dll
Mono.Security.dll
System.Configuration.dll
System.Core.dll
System.Data.dll
System.Drawing.dll
System.Numerics.dll
System.Runtime.Serialization.dll
System.Security.dll
System.Windows.Forms.dll
System.Windows.Forms.dll.config
System.Xml.Linq.dll
System.Xml.dll
System.dll
Terraria.png
TerrariaServer
--> TerrariaServer.bin.x86 <--
TerrariaServer.bin.x86_64
TerrariaServer.exe
WindowsBase.dll
changelog.txt
config.txt
lib
lib64
monoconfig
monomachineconfig
mscorlib.dll
open-folder
run.sh

我在StackOverflow上看到的其他答案已经指出了权限冲突(我为了测试目的而自由地应用了chmod 777)和Windows行结尾(Dockerfile和run.sh都是通过nano通过PuTTY创建和编辑的),但我做的没有变化影响结果。

Dockerfile:

FROM  ubuntu:latest

# Get wget package
RUN  apt-get update \
  && apt-get install -y wget \
  && apt-get install -y unzip \
  && rm -rf /var/lib/apt/lists/*

#RUN  apt-get install dos2unix

# Download and extract Terraria server files
RUN  pwd \
  && mkdir Downloads

RUN  cd Downloads \
  && wget -O "/Downloads/TServer.zip" http://terraria.org/server/terraria-server-1353.zip \
  && ls
RUN  unzip "/Downloads/TServer.zip" -d "/Downloads/TServer/"

# Extract the linux folder and delete old files/folders
RUN  cp -ra "/Downloads/TServer/1353/Linux/" "/ServerFiles/" \
  && rm -rf "/Downloads/TServer.zip" \
  && rm -rf "/Downloads/TServer/"

COPY run.sh /ServerFiles/run.sh
RUN chmod 777 /ServerFiles/run.sh

# Set the working directory
WORKDIR  "/ServerFiles/"
RUN ls
RUN chmod 777 .

RUN  chmod 777 TerrariaServer.bin.x86
RUN  adduser --disabled-password --gecos '' tserveruser \
  && adduser tserveruser sudo
RUN  chown -R tserveruser:tserveruser /ServerFiles
RUN  chown tserveruser:tserveruser /ServerFiles/TerrariaServer
USER  tserveruser

# Create the default config.txt
RUN printf "maxplayers=8\nport=7777\npassword=testpass\nworldpath=~/ServerFiles/Worlds/\ndifficulty=0\nautocreate=2\nworldname=World" \
  > config.txt

ENTRYPOINT ["./run.sh"]
docker dockerfile ubuntu-server
2个回答
0
投票

在黑暗中刺伤......我能想到的唯一一件事就是解释你所看到的行为,因为你已经很好地制作并提供了所有数据......

/ServerFiles/TerrariaServer.bin.x86可能是一个未指向现有文件的符号链接吗?这将产生您显示的列表和您在尝试运行该“文件”时获得的错误。也可能是它指向没有适当权限的文件。

如果那不是它,也许你应该做一个“ls -l”来看看是否恰好提供了任何线索。


0
投票

使用已确认存在的二进制文件,此错误通常意味着您具有图像中不存在的动态链接库。使用shell运行您的映像,然后从那里检查ldd /ServerFiles/TerrariaServer.bin.x86以查看预期和可能缺少的库。

© www.soinside.com 2019 - 2024. All rights reserved.