我正在关注官方网站上的教程。
https://docs.docker.com/get-started/part2/#build-the-app
我创建了一个名为dir的目录,并添加了Dockerfile,app.py和requirements.txt。当我尝试构建它时,错误是 -
...
cursor = connection.cursor()
query = """INSERT INTO report_table (FirstName, LastName) VALUES (%s, %s)"""
for r in range(1, sheet.nrows):
fname = sheet.cell(r,1).value
lname = sheet.cell(r,2).value
values = (fname, lname)
cursor.execute(query, values)
connection.commit()
cursor.close()
connection.close()
答案 0 :(得分:1)
您忘了提及context-root的位置
#>docker build -t hello .
添加一个。最后,如果Dockerfile位于当前位置