ci stuff
This commit is contained in:
parent
e230ae877d
commit
d83535cbb9
@ -19,9 +19,9 @@ WORKDIR /home/container
|
|||||||
# Copy the built jar file from the builder stage
|
# Copy the built jar file from the builder stage
|
||||||
COPY --from=builder /home/container/target/Paste-Backend.jar .
|
COPY --from=builder /home/container/target/Paste-Backend.jar .
|
||||||
|
|
||||||
# Make port 3000 available to the world outside this container
|
# Make port 80 available to the world outside this container
|
||||||
EXPOSE 3000
|
EXPOSE 80
|
||||||
ENV PORT=3000
|
ENV PORT=80
|
||||||
|
|
||||||
# Run the jar file
|
# Run the jar file
|
||||||
CMD java -jar ScoreSaberUtils-Backend.jar -Djava.awt.headless=true
|
CMD java -jar ScoreSaberUtils-Backend.jar -Djava.awt.headless=true
|
||||||
|
@ -76,6 +76,7 @@ public class ScoreSaberService extends TextWebSocketHandler {
|
|||||||
public ScoreSaberAccountToken getAccount(String id) {
|
public ScoreSaberAccountToken getAccount(String id) {
|
||||||
ScoreSaberAccountToken account = WebRequest.getAsEntity(String.format(GET_PLAYER_ENDPOINT, id), ScoreSaberAccountToken.class);
|
ScoreSaberAccountToken account = WebRequest.getAsEntity(String.format(GET_PLAYER_ENDPOINT, id), ScoreSaberAccountToken.class);
|
||||||
if (account == null) { // Check if the account doesn't exist.
|
if (account == null) { // Check if the account doesn't exist.
|
||||||
|
log.info("Account with id '{}' not found.", id);
|
||||||
throw new ResourceNotFoundException("Account with id '%s' not found.".formatted(id));
|
throw new ResourceNotFoundException("Account with id '%s' not found.".formatted(id));
|
||||||
}
|
}
|
||||||
return account;
|
return account;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
server:
|
server:
|
||||||
address: 0.0.0.0
|
address: 0.0.0.0
|
||||||
port: 3005
|
port: 80
|
||||||
servlet:
|
servlet:
|
||||||
context-path: /
|
context-path: /
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user