update: docker with expose port and localcache hGet and hSet return null

This commit is contained in:
oismaelash 2024-10-02 00:13:00 -03:00
parent 168c5f18d8
commit 5829762f91
2 changed files with 4 additions and 0 deletions

View File

@ -53,4 +53,6 @@ COPY --from=builder /evolution/tsup.config.ts ./tsup.config.ts
ENV DOCKER_ENV=true
EXPOSE 8080
ENTRYPOINT ["/bin/bash", "-c", ". ./Docker/scripts/deploy_database.sh && npm run start:prod" ]

View File

@ -47,10 +47,12 @@ export class LocalCache implements ICache {
async hGet() {
console.log('hGet not implemented');
return null
}
async hSet() {
console.log('hSet not implemented');
return null
}
async hDelete() {