use user uid 1000
This commit is contained in:
parent
109e06a5d6
commit
9c248a194d
@ -13,4 +13,12 @@ RUN apt update && apt install -y ffmpeg libsm6 libxext6
|
|||||||
COPY src .
|
COPY src .
|
||||||
COPY best.pt /best.pt
|
COPY best.pt /best.pt
|
||||||
|
|
||||||
|
RUN chown -R 1000 /usr/src/app
|
||||||
|
RUN mkdir /.config
|
||||||
|
RUN mkdir /.cache
|
||||||
|
RUN chown -R 1000 /.config
|
||||||
|
RUN chown -R 1000 /.cache
|
||||||
|
|
||||||
|
USER 1000
|
||||||
|
|
||||||
CMD [ "gunicorn", "-b 0.0.0.0:80", "--workers", "1", "app:app" ]
|
CMD [ "gunicorn", "-b 0.0.0.0:80", "--workers", "1", "app:app" ]
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
<img id="img" src="" />
|
<img id="img" src="" />
|
||||||
|
|
||||||
<p id="statusline">submit an image to get started!</p>
|
<p id="statusline">submit an image to get started!</p>
|
||||||
<form id="form" action="http://localhost:8759/submit" method="post">
|
<form id="form" action="https://glass.alv.cx/submit" method="post">
|
||||||
<input type="file" id="job" name="image" accept="image/png,image/jpeg" /><br>
|
<input type="file" id="job" name="image" accept="image/png,image/jpeg" /><br>
|
||||||
<button type="submit" id="submit">submit</button>
|
<button type="submit" id="submit">submit</button>
|
||||||
</form>
|
</form>
|
||||||
@ -38,11 +38,11 @@
|
|||||||
console.log(id);
|
console.log(id);
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
const resp = await fetch('http://localhost:8759/state/' + id);
|
const resp = await fetch('https://glass.alv.cx/state/' + id);
|
||||||
const state = (await resp.json()).state;
|
const state = (await resp.json()).state;
|
||||||
statusline.innerHTML = state;
|
statusline.innerHTML = state;
|
||||||
if (state == "READY") {
|
if (state == "READY") {
|
||||||
img.src = 'http://localhost:8759/result/' + id
|
img.src = 'https://glass.alv.cx/result/' + id
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user